
This resource address deletes a group from the cluster.
| URL Parameters | |
|---|---|
| format | The format of the posted data. Can be either
html, json, or xml (default). This value overrides
the Accept header if both are present. |
| Request Headers | |
|---|---|
| Accept | The expected MIME type of the request body. If
the format? parameter is present, it takes precedence over the Accept header.
|
Upon success, MarkLogic Server returns status code 204 (No content). If the payload is malformed or the group does not exist, a status code of 400 (Bad Request) is returned. A status code of 401 (Unauthorized) is returned if the user does not have the necessary privileges.
manage-admin role, or the following
privilege: http://marklogic.com/xdmp/privileges/manage-admin
curl -X DELETE --anyauth -u admin:admin --header "Content-Type:application/json" \
http://localhost:8002/manage/v2/groups/Foo
==> Deletes the "Foo" group from the cluster.